home *** CD-ROM | disk | FTP | other *** search
/ Univers Mac Interactif 43 / Univers Mac Interactif - Issue 43.iso / univers mac N°43 / Reseaux / internet / internet utilitaires / Sparkle230 folder / (Docs) / New in 2.3.0 < prev    next >
Text File  |  1994-12-20  |  32KB  |  532 lines

  1. What's new in 2.3?
  2. • The MEG2Decoder had problem where it screwed up display of MPEGs that were 
  3.     not a multiple of 16 in width. Fixed
  4. • A serious problem with MPEGEncoding that often produced garbage MPEGs is 
  5.       fixed.
  6. • All encoding (QT and MPEG) is now done based on time. not frame number. 
  7.     This makes audio support much easier.
  8. • Preliminary audio support has been added for MPEGs. See the ``Readme Sound'' 
  9.      file for details.
  10. • Opening QT movies (especially long ones) is faster.
  11. • Some minor user interface tweaks.
  12. • Some cosmetic bugs fixed.
  13. • You can now choose the frame rate at which to play MPEGs and PICT 
  14.       pseudo-movies.
  15.  
  16. What's new in 2.2.3?
  17. • Bug fixes:
  18.     * Under certain circumstances an MPEG would stop playing just before the 
  19.       very last or first frame was displayed.
  20. • Speed tweaks.
  21.  
  22. What's new in 2.2.1?
  23. • Bug fixes:
  24.     * In very special circumstances (a slightly corrupt MPEG that was missing
  25.       a SequenceEndCode, I was writing a few bytes over the end of a memory 
  26.       block. This lead to crashes on 020/030 class macs.
  27.     * When encoding an MPEG, I (very stupid, I know) landed up aliasing the file
  28.       reference number associated with the MPEG file, then closing that 
  29.       fileReferenceNumber twice, something Apple warn is not a great idea.
  30.     * At startup if the user had a corrupt prefs file and tried to quit, 
  31.       Sparkle would crash---I was ForgetHandle()ing a resource handle. Grrr!
  32.     * Fixed Yet Another problem with the SC++ BEL macros. This one involved 
  33.       crummy Symantec code for testing if an object's on the stack that fails 
  34.       when threads are active.
  35.     * Was setting the bkPixPat of a window to NULL when closing it--dumb.
  36.     * Was disposing of a handle that was disposed of in some library code 
  37.       written by someone else. Taligent have a nice naming convention for 
  38.       libraries to prevent this sort of thing---it can't happen a moment too 
  39.       soon.
  40.     * Fixed a few anomalies I noticed in the way things are drawn on 1 and 2
  41.        bit screens (like anyone uses Sparkle on one :-) ).
  42. • Tweaks to make the progam feel snappier:
  43.     * Wherever I was calling FlushVol() to dump the disk cache to disk, I now 
  44.       do that asynchronously. Async IO is also used in a few other places. It's 
  45.       not yet used for reading files, but that will come.
  46.       Note that QuicKeys, for reasons that (I'll be charitable and not state my 
  47.       true feelings) make no sense to me, disables asynchronous IO so you won't 
  48.       see any effect. If you think this sucks, call CE Software and tell them.
  49.     * I now preload QuickTime stuff at startup to avoid latencies later when 
  50.       I need it.
  51.     * When building a PICT pseudo-movie, a much faster algorithm for 
  52.       scanning for the files of the movie is used.
  53.     * When displaying a PICT pseudo-movie, the disk should be accessed rather 
  54.       less often than before
  55. • MPEG encoding has been sped up. I have dropped the Berkeley 
  56.     encoding algorithms and used my own algorithms. (Where these are similar to 
  57.     the Berkeley algorithm, I use the same name simply for consistency.)
  58.     My algorithms are not only faster but produce slightly smaller files 
  59.     and use more elegant, shorter code---a perfect win win win situation. 
  60.     The Technical Readme file contains brief descriptions of the properties 
  61.     of the new algorithms.
  62.  
  63. What's new in 2.2?
  64. • The usual cleanups of course.
  65. • Substantially improved building of the index when an MPEG is opened. 
  66.     The new code is about five times the speed of the old code, and the 
  67.     interleaving of CPU and file access is done more carefully.
  68.     This should make windows popup more snappily when you open an MPEG file.
  69.     (Unfortunately if you're pulling the MPEG off a slow hard drive, CD-ROM 
  70.     or network this speed is limited anyway by the file system, not the CPU 
  71.     calculations.)
  72. • I should have had a TRY/CATCH handler in place for if an error occurred 
  73.     while the dialog boxes were being popped up for saving an MPEG or QT 
  74.     movie. This could have led to crashes (more likely just strange error 
  75.     dialogs), but is now fixed.
  76. • If you ran Sparkle in the background on an 8-bit color screen while a 
  77.     foreground app kept creating a number of different palettes, then when 
  78.     Sparkle was quit an error message could occur (I was running down an 
  79.     array associated with each new palette destroying items but I should 
  80.     have run down the array starting from the end not the beginning of the 
  81.     array.)
  82. • Thread synchronization is now done ``properly'' using a number of 
  83.     semaphores. This replaces the old method of using a very carefully 
  84.     orchestrated dance to move between threads. The new method is 
  85.     theoretically safer (and makes it a lot easier to alter the code) but 
  86.     being new I may have forgotten something in one routine or two. Bear 
  87.     with me and report any strange bugs---machine locking up, strange error 
  88.     messages, garbled images.
  89. • Some (very strange) QT movies may have multiple superimposed video tracks.
  90.     In this case when Sparkle created an MPEG or QT movie from the original 
  91.     QT movie parts of the image you saw could have random colors in them.
  92.     This is now fixed.
  93. • Other strange QT movies could be encoded with not a fixed frame rate but 
  94.     every frame lasting a different amount of time. When creating an MPEG 
  95.     nothing can be done about that, but when creating a new QT movie I allow
  96.     a frame rate of zero which will create all frames at whatever time they 
  97.     should be created at.
  98. • When a movie was being encoded to some other format the movie controller 
  99.      was not drawn with all decorations suppressed. Now it is.
  100. • When an MPEG window was opened said window displayed some flicker as pieces 
  101.     of it were drawn. This has been cleaned up. Likewise for PICT-sequence 
  102.     windows.
  103. • In a few places certain variables that should gave been initialized to NULL
  104.     or zero were not. In theory if an exception ocurred in these blocks of 
  105.     code a crash might occur. Anyway now fixed.
  106. • A bug in CustomGetFile() in the MacOS leads to a loss of 64 (or so) bytes 
  107.      every time a file selection dialog box is displayed if there is an `ictb' 
  108.      associated with the dialog box. (It looks like the `ictb' is read in and 
  109.      DetachResource'd() then the handle created that way is never disposed of.)
  110.      This was fixed by removing the `ictb's associated with these dialogs.
  111.     The same holds true for `mctb's if the dialog contains a popupmenu. I would 
  112.     guess it also holds for `cctb's, but it does NOT hold for `dctb's.
  113. • New look---windows with grey background, can shrink video as small as you like.
  114.     a startup splash screen.
  115. • If you decide partway through startup you don't want to run Sparkle, hit 
  116.     command-. (command-period) to abort.
  117. • PowerMac native (and very fast). A 6100/60 gives three times the 
  118.   playback rate of my Quadra 610.
  119. • Rewritten MPEG encoder to use way less memory.
  120. • MPEG decoding code has been restructured so as to present a block of 
  121.   code that can easily be dropped into other environments. This will form 
  122.   the basis for various QT components/drivers I'd like to write to give 
  123.   much tighter integration with QT.
  124. • All large memory allocation is done through temp mem. Basically this 
  125.   means you shouldn't ever need to increase the size of Sparkle's 
  126.   partition but you can open and save files limited only by all the 
  127.   memory on your mac.
  128. • Foundations have been laid for AppleScripting. You probably can't do 
  129.   any useful scripting with this release but that will change soon.
  130. • User interface has been tweaked a little. I hope you like the changes.
  131. • The most common problem with the 2.1 versions was that the preferences 
  132.   file would become corrupted leading to random errors. The prefs file 
  133.   handling has been changed in this version to make that much less likely.
  134.   If this release gives you problems, destroy the Sparkle prefs file then 
  135.   try again.
  136. • Many many bug fixes.
  137.  
  138.  
  139. What's new in 2.1.5?
  140. • Somewhere in the cleanups of code of the last few revs I landed up 
  141.     dividing some color motion vectors by two too often resulting in
  142.     misaligned color on MPEGs created without half-pixels. This is fixed.
  143.  
  144. What's new in 2.1.4?
  145. • Many many internal cleanups of the code as part of my cleanup for 
  146.     PowerPC. If these cleanups broke anything, please tell me.
  147. • There was in bug in some earlier versions so that when you opened Sparkle 
  148.     on a system without QuickTime rather than quitting gracefully it could 
  149.     crash when quitting. Now fixed.
  150. • Minor changes have been made to better support Macintosh Easy Open.
  151. • When saving an MPEG or QT movie in an alternative form the play button 
  152.     of the movie controller is hidden which I think looks better.
  153. • When a movie saving was in progress and was paused, if the relevant 
  154.     window was covered then uncovered (generating an update event)  
  155.     Sparkle would hang. This was because Sparkle tries to switch to 
  156.     a thread that has been put to sleep. This has been fixed.
  157. • If an MPEG were opened and immediately command-S were typed, once the 
  158.     saving was done it was possible for Sparkle to popup an error message.
  159.     The problem was that the very first update event for the MPEG window, 
  160.     used to initialize some variables, would be discarded is a save were 
  161.     begun immediately. The code used when an MPEG is opened has been fiddled
  162.     a little to prevent this.
  163. • I was asked by some people doing Sparkle for batch conversion of MPEG 
  164.     and QT for a way for Sparkle to indicate when it is done converting a 
  165.     file. I won't have AppleScriptability in place for a few months but I 
  166.     did put in a quick hack to allow this for users of QuicKeys. Look in the 
  167.     ReadMe 2nd file for details (do a search for QuicKeys). 
  168. • In the code I added to 2.1.3 to support halfPixels I made a typo which 
  169.     under rare circumstances would set the color of a block incorrectly or 
  170.     (if you were unlucky) crash. This is fixed.
  171. • Memory used for MPEG encoding MPEGs has been dramatically reduced. 
  172.     For the case of encoding MPEGs with only I-frames, the memory 
  173.     required is 1/6th of what was required in 2.1.3 and earlier versions. 
  174.     For MPEGs using P and/or B frames, memory required is about .4 of
  175.     what required earlier (actually 15/36). These memory requirements
  176.     will be shrunk further in later versions of the code.
  177. • The MPEG Playback prefs dialog has cleaned up a little and behaves a 
  178.     little more intuitively. Now the options under the 8bit color section 
  179.     always apply when the screen is 8bit color, regardless of the 8bit 
  180.     dithering method used.
  181.     There is now a tryout button. Click there to see how the changes you 
  182.     make alter what you see.
  183. • Two further options have been added to the MPEG Encoding dialog to give 
  184.     you a little more control over this behavior. 
  185.     You can now specify whether half-pixel encoding is used or not
  186.     (in the past half-pixels were always used).
  187.     Likewise you can specify whether or not to compare against raw 
  188.     reference frames or reference frames decoded from the MPEG stream being 
  189.     created (in the past decoded reference frames were always used).
  190.  
  191. What's new in 2.1.3?
  192. • There was a bug in 2.1.2 that prevented one (usually) from playing MPEGs 
  193.     in play all frames mode. So sorry about that. This is fixed.
  194. • I have (FINALLY) fiddled the P and B frame calculations to be EXACT at 
  195.     highest quality settings (ie when saving an MPEG to a secondary file.)
  196.     The last few touches involved doing all the finicky details specified 
  197.     in the MPEG DIS (which in the worst case can involve compositing a single 
  198.     image point from values spread over nine different places. The differences 
  199.     are very subtle but are visible---large areas of smooth texture in 
  200.     particular in the past tended to develop a slight granularity which is 
  201.     now cured.
  202.     This code involved coding a huge number of special cases and I may have 
  203.     made a mistake in a case or two. I have run all my example MPEGs through 
  204.     and they look good but if you see a block that looks misaligned or has a 
  205.     different color from what it should have, please tell me so I know I 
  206.     need to fix a mistake.
  207. • There was a bug in 2.1.2 and earlier versions where, if an MPEG was playing 
  208.     and you closed the window there was a small chance of an error message 
  209.     popping up. This bug was due to what's called a race condition. 
  210.     It should have been fixed, but if not please tell me.
  211.  
  212. What's new in 2.1.2?
  213. • In 2.1 when a window was first opened and the Video menu selected, the 
  214.     menu showed Palindrome looping as on even though it was not. This is fixed.
  215. • In 2.1 I had a serious (crashing) possible bug that could occur when a 
  216.     window was closed. This was because the life cycles of video encoding 
  217.     threads and video playing threads are different. I must rationalize 
  218.     these to one model, but till then I've applied a quick and dirty fix.
  219. • Long complicated pathways through about six auxiliary functions, used when 
  220.     threads died and a holdover from the Sparkle 1.x days, have been removed to 
  221.     use a much simpler virtual function based scheme. This is slightly faster
  222.     and, more important, much simpler hence, hopefully, less buggy.
  223. • Deactivating/activating of the ``Change file type to MPEG'' radio button in     
  224.     the open file dialog was a little erratic. This has been fixed.
  225. • Rudimentary balloon help has been added.
  226. • When memory is very low and a window starts being opened, but fails 
  227.       partway, the cleanup code was slightly wrong. Now fixed.
  228. • Improved the display on 4-bit color screens. It was very blocky.
  229. • Changed the progressbar to display properly on 4-bit color screens.
  230.     The two colors used for foreground and background were being mapped onto
  231.     the same color.
  232. • Change the progress bar to update itself better when parts of the window are 
  233.     uncovered. Before parts would be drawn quite a while before other parts
  234.     giving a result that looked silly.
  235. • Added a menu option to allow operation without ever yielding time to 
  236.     WaitNextEvent. If you don't need to give time to background applications, 
  237.     use this option for faster, less jerky, playback.
  238. • Speech manager code used to announce a delay when encoding an MPEG 
  239.     could, if timing was just wrong, crash. I think the problem was that the 
  240.     Speech Manager was building internal data structures on the stack, and 
  241.     that stack disappeared when the the MPEG encoding thread died. Anyway 
  242.     I've modified the speech code so this can't happen.
  243. • Discovered a serious problem in my video encoding code. When an MPEG 
  244.     window was resized while it was being converted to another MPEG or QT 
  245.     movie, the result could be a munged image for a few frames. The fix 
  246.     involved a major structural readjustment of Sparkle---ALL video 
  247.     manipulations now pass through ThreadEvent queues---but the result is 
  248.     that for the first time I feel confident about the theoretical 
  249.     underpinnings of Sparkle---that while minor bugs may remain, there are 
  250.     no conceptual nasties waiting to bite me.
  251. • When windows are resized, the resizing is done in a manner that leaves 
  252.     no gunk in the window in the moments before the resizing is complete.
  253. • I discovered yet another way in which things could crash---The MacOS call
  254.     DrawPicture() will crash if it runs out of memory---thanks Apple.
  255.     There's nothing I can do about this, so what I did do is try to trap 
  256.     situations that form a pattern of using DrawPicture() while memory is 
  257.     getting lower and warn you that memory is running low. This doesn't 
  258.     catch all situations but catches some.
  259. • The play/pause button no longer toggles between states when you start a 
  260.     movie saving or pause it. This is because what I was doing to get this 
  261.     to work in QT 1.x no longer works nicely in QT 2.0 --- flickering frames
  262.     result. I guess this is a consequence of DataPipe or something. 
  263.     Anyway I've replaced this with indicators in the title bar.
  264. • I made a few changes to allow easier more sensible playback of QT movies that 
  265.     consist of only sound. This is at present rudimentary but is a start.
  266.  
  267. What's new in 2.1?
  268. • Yet again memory management has been fiddled with. Previous tinkering with 
  269.     memory management was to ensure that my own code never crashed for lack 
  270.     of memory. Building on top of that, I've tried to ensure that calls to 
  271.     the operating system won't crash for lack of memory. This is more 
  272.     difficult because, obviously, I don't know just what the memory 
  273.     requirements of each call are. However I've done the best I can, and 
  274.     the resultant code seems even more robust than 2.02.
  275. • The scheduling has been revamped based on the threading. I now make 
  276.     intelligent decisions about which thread to schedule when. Also calls to
  277.     the main event loop, which were very expensive in time, have been cut 
  278.     dramatically. the result is about a 15% speed boost all round.
  279. • MPEG playback is now based on genuine timing, not on simply playing 
  280.     every frame as fast as possible. Like QuickTime movies, you can play 
  281.     MPEGs back in real time or play every frame. I also now support the 
  282.     movie controller variable speed controls obtained by control-clicking 
  283.     on the forward/backward stepper buttons.
  284. • You can now set QT and MPEG movies to loop.
  285. • You can now grow or shrink MPEG and QT movie windows.
  286. • The cursor is now hidden when movie playback starts, until you move it.
  287.     This seems to be a reasonable compromise for preventing flickering cursor
  288.     when starting a movie using the keyboard, but atill allows the user 
  289.     easily to find the cursor when needed.
  290. • When files are opened, windows are now tiled in a vaguely intelligent fashion,
  291.     attempting both to use the available screens with best depth, and to 
  292.     avoid window overlap.
  293. • Dragging windows is now aligned to a grid of optimal window placement. This
  294.     gives better movie playback.
  295. • Can now show/hide the progressPane, movie controller and frame count with the 
  296.     tab key using tab, shift-tab, control-tab.
  297. • The drawing of the progress bar has been altered slightly, to fix cosmetic 
  298.     defects and to make the appearance closer to that of the movie controller.
  299. • Support for MPEGs with a pixel aspect ratio not equal to one has been added.
  300.       At present this isn't switched on because some dumb MPEGs out there 
  301.       have a bogus aspect ratio encoded in them. However if someone wants 
  302.       this feature right away, I'll add a user interface to access it.
  303. • Support for MPEGs with multiple sequence headers has been added, not 
  304.     that I have ever seen such an MPEG.
  305. • Playback is now much faster through a variety of mechanisms. However 
  306.     this has, as a consequence, lower quality playback. You may set through 
  307.     preferences which optimizations you're willing to accept for faster 
  308.     playback and which you're not willing to accept. All optimizations are 
  309.     turned off when converting an MPEG to another format so that you'll get 
  310.     the best possible quality.
  311.     Playback speed is now about 1.6 times faster for 24 bit screens, about 
  312.     2.5 times as fast for 8 bit grey screens, and improvements in between for 
  313.     other screen depths.
  314. • Special purpose display code is used for 
  315.     24 bit, 16 bit and 8 bit color screens and 8 bit grey screens.
  316.     All other screens are sent through one of the above special purpose codes 
  317.     then use QuickTime to convert the pictures to the appropriate screen depth.
  318.     Obviously special purpose code is faster. If I get lots of calls for 
  319.     screen depths other than the one's I'v supported directly, I'll look into 
  320.     adding more special purpose code.
  321. • In 2.0 I broke the support for adding files called name.mpg, but without 
  322.     a file type of MPEG so you could open files of that type but nothing 
  323.     would happen. Sorry about that. It's been fixed. 
  324. • When files are opened and are not of the default Mac types (for example 
  325.     files imported from a UNIX box, or files on a PC CD ROM) Sparkle uses 
  326.     more intelligence in deciding whether to open these files as MPEGs, QT 
  327.     movies or pictures. If this mechanism is still not general enough for 
  328.     some users (I image mainly users sharing data with PCs), let me know.
  329. • The ``official'' MPEG encoding pattern of IBBPBBPBBPBB is now a pre-defined 
  330.     option. Some people asking for this as a pre-defined option have given me
  331.     slightly different patterns as the ``official'' pattern. However what I 
  332.     have used is, to the best of my knowledge correct, and I'm assuming these
  333.     people who wrote to me simply made typos. If you have comments on this, 
  334.     please mail me.
  335. • I twiddled the RGB to YCrCB conversion code that is the first step in 
  336.      encoding MPEGs. The changes won't affect anyone except people creating 
  337.      MPEG movies whose width or height is odd, in which case the very last 
  338.      row or column of pixels will have more accurate color. The important 
  339.      change, however, was that I no longer read beyond the end of some arrays,
  340.      so I'm ready for when Apple give us protected memory a year from now.
  341. • Under certain rare circumstances, depending on the number of frames int the 
  342.     input file and the IPB pattern used, the last frame or two of the input 
  343.     would not be saved in the output MPEG. This is fixed.
  344. • MPEG encoding now can specify a frame rate (in the past this was always 
  345.     30 fps). Sure the range of choices is limited---blame the people who 
  346.     wrote the MPEG spec---those are, basically, the only choices.
  347.     1) Can people with MPEG hardware verify that this works for me?
  348.         On my mac with 10fps max playback, it's tough to see if this works.
  349.     2) There are some frame rates I've omitted that are very close to those 
  350.        I give, for example 29.97 fps. At some point i'll get the finicky 
  351.        time right to support these but it's a pretty low priority compared 
  352.        to sound.
  353.  
  354. What's new in 2.01?
  355. • Implemented padding YUV macroblocks with a repeat of the last value of
  356.      each YUV triplet when macroblocks at the edge of a frame spill over 
  357.      the edge. The most common case of this is a 120 pixel high movie with a 
  358.      macroblock height of 128. In the past this spillover was filled randomly.
  359.      The result of this is that MPEGs created are about 15% smaller.
  360. • Some diddling with the code used by the IDCT algorithm gives a speed boost 
  361.     of about 5% to both playing and encoding MPEGs.
  362. • Fixed a serious bug that prevented you from playing an MPEG if you started 
  363.     playing    it then interrupted it. A nice byproduct of this is that I got 
  364.     jogging of MPEGs fully operational. You can now repeatedly view a section 
  365.     of the MPEG by hitting command-right-arrow then command-left-arrow to keep 
  366.     the MPEG moving forwards then backwards.
  367. • Altered the alert popped up when the Thread Manager is not present to make
  368.     it more palatable to corporate and institutional users.
  369. • Fixed the MPEG buffering which would give problematic results for very small
  370.     MPEGs (say three frames or less).
  371. • Finally went through all resources, marking them purgable or not and removing
  372.     the unnecessary ones.
  373. • Fixed the "PBBIBB" default frame set to make it correspond to the user view
  374.     of things, not my programmer's view.
  375. • Fixed a bug that prevented a temporary movie created by the movie controller 
  376.     handling an MPEG file from being destroyed.
  377. • Fixed two bugs in the Think Class Library dealing with the loading of dialogs 
  378.     then manipulating them without setting their memory blocks to non-purgable.
  379. • Fixed a long-standing bug in the MPEG player buffer-handling code that 
  380.     would cause the MPEG frame index to be incorrect if it was created while 
  381.     memory was short. This probably never caused problems except for very long
  382.     MPEGs.
  383. • When converting a QT movie into a different movie form, the dialog that comes
  384.     up asking you for compression options will have the frame rate and key
  385.     frame rate set at what the original movie used, sparing you from having to
  386.     guess. I will eventually have this working across all file conversions, 
  387.     not just movie-->movie.
  388. • The Think C 6 compiler contains a bug when performing code-motion optimization 
  389.     on complex loops. If you run through the assembly it produces in this case,
  390.     it performs some very nifty register coloring and creating induction 
  391.     variables for the loop. It then leaves out one crucial instruction to 
  392.     update one of the induction variables each pass through the loop and so 
  393.     the code is garbage. 
  394.     As far as I can tell, this only affects one function in my code and I have
  395.     used a #pragma there to prevent it happening, but the fact that bugs like
  396.     this exist in the compiler is a little worrying.
  397. • Revised all memory allocation so that it is more likely to not to use up all
  398.     memory reserves and leave nothing for toolbox.
  399. • Found an especially nasty bug involving grabbing frames from a QT movie 
  400.     which, when memory ran low, would leave the system GrafPort/GDevice 
  401.     environment in an inconsistent state.
  402. • Revised all uses of GWorld to use tempMem, but fallback to local heap if 
  403.     tempMem is unavailable.
  404. • Altered the strings used to popup error messages at startup if QuickTime 
  405.     is not available. These got mixed up when I moved code around.
  406. • The code to build the MPEG index when an MPEG is opened would run out of space
  407.     when a very large MPEG was opened---one of a thousand frames or more. Now 
  408.     memory is allocated for this a little more flexibly.
  409. • Fixed a bug I inserted when I changed from Sparkle 1.6 to 1.7. I rewrote the
  410.     Berkeley motion vector code to speed it up and in the process made one 
  411.     little typo, shifting a variable right by 1 not 2. The effect of this, in 
  412.     Sparkles 1.7 and 2.0 was that, under very rare occasions, blocks of color 
  413.     would appear a few pixels off from where they should be. The only place I 
  414.     ever saw this was three or four frames of the MPEG sales110.mpg.
  415.     This is not related to a separate problem. 
  416.     The motion estimation code in the MPEG encoder (at present the Berkeley code
  417.     with practially no changes) is not perfect. It sometimes creates 
  418.     blocks that appear to be wildly off from where they should be (by quite a few
  419.     pixels). This is not very obvious in real life, but is very obvious in animation.
  420.     This is largely a quantization artifact---it goes away if you lower the 
  421.     quantizations. But obviosly you don't want to do that always, just where 
  422.     necessary, so you really want a smarter quantizer that is adaptive. 
  423.     I'll work on issues like this as soon as I can.
  424. • When converting a movie with sound to MPEG or QT, occasionally pops of sound could 
  425.     be heard. This is fixed.
  426. • When converting movies with very low keyframe rates (say 20 or more dependent 
  427.     frames per keyframe) occasionally the display of the movie would get confused 
  428.     and appear to alternate between two different frames. This is fixed.
  429.  
  430. What's new in 2.0?
  431. • The structure of the code has been completely altered to be based on 
  432.     threads. This makes it much easier for me to add new features to the code 
  433.     while having it retain MultiFinder friendliness.
  434. • Now opens and plays QT movies.
  435. • Now can create MPEG files. General conversion from 
  436.      {QT or MPEG}--->{QT or MPEG} is possible.
  437. • Many minor changes to the way files are opened, named and such.
  438. • Makes minor use of the speech manager if installed.
  439. • You can now play MPEGs backwards.
  440.  
  441. What's new in 1.71?
  442. • The progress bar now updates itself properly at the very end of saving 
  443.     each frame to Quicktime. It also draws itself better on b/w screens.
  444. • More of the default QT movie player keystrokes now work.
  445. • The app notes if an MPEG file has many errors and if so warns you that 
  446.     it has probably been transferred to the mac incorrectly.
  447. • I have incorporated a workaround to make Sparkle work with the QT VM 
  448.     extension. However I do not recommend you use the two together. If you do 
  449.     use QT VM you will find Sparkle's memory usage a little less efficient 
  450.     than without using QT VM. This is because of the way QT VM works.
  451. • Fixed a bug that caused unusually sized MPEGs to display as distorted.
  452. • Sparkle should now cope a little better with low memory situations.
  453. • Added a small tweak to improve drawing on 16bit screens under low 
  454.     memory conditions.
  455. • Uses the most recently released version on the floating windoid.
  456. • I have learned of an app that will convert QT to MPEG on the mac. It's 
  457.     not the easiest thing to use and I recommend this only for people 
  458.     who really need this, not for people who just want to play around.
  459.     See the README file for details.
  460.  
  461. What's new in 1.7?
  462. • Opening files is much faster.
  463. • Fixed the size of the checkboxes in the Open File dialog to the correct 
  464.     size for all those millions of people who use Chicago as their system 
  465.     font cause they have no sense of aesthetics. Oops.
  466. • Now when Sparkle changes the file-type of an file, the Finder will update 
  467.     the icon immediately, instead of forcing you to open and close the 
  468.     folder to see a new icon. Thanks to Jamie McCarthy for telling me how 
  469.     to do this.
  470. • Added an "About Sparkle" dialog box to quieten the constant stream of 
  471.     complaints about this.
  472. • Changed the way progress is reported. I think the new scheme feels 
  473.     rather more elegant. (If you have a fast machine and only use small 
  474.     MPEGs, you may not notice this change much.)
  475. • Adde random access. You can now use the step backward stepper, or 
  476.     simply click in movie controller where you want to go. All standard 
  477.     movie controller clicks and keystrokes are supported.
  478. • Restructured the internal code vastly. This is what took most of the 
  479.     time and while it doesn't directly help you users, it gives me
  480.      a framework that's much easier to build on. For example it should be 
  481.      trivial to add Apple Event support when I get round to that.
  482. • Three or four minor bugs were squelched, mostly involving Sparkle crashing
  483.      when it encountered MPEGs with invalid data in them.
  484. • Now quits gracefully when started on a 68000 mac like a Classic, rather 
  485.     than crashing. I'm sure    lots of people care about this.
  486. • Added better multi-tasking support. This takes two forms. 
  487.     One is that the length of the timeslices Sparkle uses before giving up 
  488.     the CPU are now absolute times.  Before they were numbers that worked 
  489.     well for my SE/30, but probably not optimally for slower or faster 
  490.     machines.
  491.     The second is that you can now context switch out of Sparkle while it 
  492.     is doing slow QT conversions (especially converting to Compact Video).
  493.     The way I have implemented this is not wonderful, but the best I can 
  494.     do given the present way the code is structured. The next version 
  495.     will use the Thread Manager and will do this rather better.
  496.     This second form of timeslicing is done through the 
  497.     SetSequenceProgressProc() call which is new in QT1.6 and which is why 
  498.     I now require use of QT1.6. Also QT does not yield the CPU very often,
  499.     and (as far as I know) there is no way to make it yield more often.
  500.     So while your machine is no longer completely frozen as it does its
  501.     conversion, it's still not too pleasant to use for typing. I can't do 
  502.     much about this---complain to Apple and tell them to change this part of 
  503.     QT, or better yet the whole OS.
  504.  
  505. What's new in 1.6?
  506. • I became tired of continually having to explain to people about mac 
  507.     file types, so I wrote a file filter function for the Open File dialog 
  508.     box which displays ALL files with a .mpg suffix. This should make use a 
  509.     lot easier for novices.
  510. • Fixed a bug that involved writing to NULL.
  511. • Fixed a bug that prevented IBP type MPEGs from rewinding when they 
  512.     reached the end and the play button was hit twice.
  513.  
  514. What's new in 1.5.2?
  515. • I was disposing of a handle twice (specifically I was disposing of a 
  516.     pixmap and then its colortable, not realizing that DisposPixMap took 
  517.     care of the colortable for me.) Thanks to Dan Sears for pointing this out.
  518.     I never noticed a problem due to this bug, but it's probably good to 
  519.     have killed it.
  520.  
  521. Whats new in 1.5.1?
  522. • One part of my speed optimizing code was not being initialized properly. 
  523.     This caused a very specific type of MPEG file to show parts of its first 
  524.     frame as greenish blobs. Now fixed.
  525. • The code to detect errors in a corrupted MPEG file has been made even 
  526.     more robust. Substantially better recovery from such errors, by 
  527.     rebuilding the lost parts of a frame from the previous frame, has been 
  528.     introduced. Thanks to a wonderfully corrupt MPEG file I pulled off 
  529.     usenet with about 15 misc errors in it for pointing out new and 
  530.     ingenious ways to fail.
  531. • New icons, courtesy of Richard Lim in Britain. I hope you like them.
  532.     You will have to rebuild the desktop to see them.